-
Notifications
You must be signed in to change notification settings - Fork 371
fix: Merging hotfix changes into main branch #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* task page UI updates * UI updated code for task * Task page UI updated code * status section UI update in task page
* feat: added custom event * Logs updated * modify code * added exception logs * added exception logs for cosmos memory --------- Co-authored-by: Roopan P M <[email protected]>
…cep file (#42) * feat: Integrated application insights instrumentation key into bicep files * added application insights instrumentation key into env and readme file * updated json file * upgraded json file * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * pyLint issues fixed * lint issues fixed --------- Co-authored-by: Roopan-Microsoft <[email protected]> Co-authored-by: Roopan P M <[email protected]>
* Name update and padding removed * fix home page padding and cards height * remove gap in tasks section
* fix: text area background color * Cursor hover style and Light dark color updated
* feat: customized track event * pylint fix * pylint fix
* fix: added config variable * pylint fix
#49) * fix: operation id issue on server * lint issue fixed --------- Co-authored-by: Roopan-Microsoft <[email protected]> Co-authored-by: Roopan P M <[email protected]>
Prajwal-Microsoft
approved these changes
Jan 30, 2025
🎉 This PR is included in version 1.2.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.3.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Fr4nc3
pushed a commit
to Fr4nc3/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator
that referenced
this pull request
Oct 6, 2025
* fix: ui changes (microsoft#1) * fix: in progress status color after fetch task details (microsoft#5) * cancel notification message updated (microsoft#7) * Update task.js (microsoft#9) * Stages overflow issue fix (microsoft#10) * fix: added space to the agent (microsoft#13) * Approve reject buttons titles disabling buttons and (microsoft#15) * Fix: UX becomes damaged when chat outputs sample code for a task (microsoft#14) * task page UI updates * UI updated code for task * Task page UI updated code * status section UI update in task page * Added custom event (microsoft#24) * feat: added custom event * Logs updated * modify code * added exception logs * added exception logs for cosmos memory --------- Co-authored-by: Roopan P M <[email protected]> * fix: task with zero stages cannot show the page, spins forever and rai test prompt (microsoft#41) * Updated the workflow for build and push docker * updated the repo name * Update requirements.txt * Update requirements.txt * Update requirements.txt * feat: Integrated application insights instrumentation key into the bicep file (microsoft#42) * feat: Integrated application insights instrumentation key into bicep files * added application insights instrumentation key into env and readme file * updated json file * upgraded json file * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * Update docker-build-and-push.yml * pyLint issues fixed * lint issues fixed --------- Co-authored-by: Roopan-Microsoft <[email protected]> Co-authored-by: Roopan P M <[email protected]> * Update test.yml (microsoft#43) * Disabling Text Area functionality (microsoft#47) * fix: Usability and Alignments changes (microsoft#48) * Name update and padding removed * fix home page padding and cards height * remove gap in tasks section * Update docker-build-and-push.yml to debug * Update docker-build-and-push.yml * Update docker-build-and-push.yml to take the correct event name * Update docker-build-and-push.yml * fix: text area background color (microsoft#50) * fix: text area background color * Cursor hover style and Light dark color updated * feat: customize track events (microsoft#54) * feat: customized track event * pylint fix * pylint fix * fix: added config variable (microsoft#59) * fix: added config variable * pylint fix * Title updated (microsoft#60) * fix: operation id field of custom events showing as zero on the server (microsoft#49) * fix: operation id issue on server * lint issue fixed --------- Co-authored-by: Roopan-Microsoft <[email protected]> Co-authored-by: Roopan P M <[email protected]> --------- Co-authored-by: Prashant-Microsoft <[email protected]> Co-authored-by: Kiran-Siluveru-Microsoft <[email protected]> Co-authored-by: Mohan-Microsoft <[email protected]> Co-authored-by: Harmanpreet-Microsoft <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request includes various changes to improve the configuration and functionality of the backend and frontend components, as well as updates to documentation. The most important changes include adding a new configuration parameter for the Azure OpenAI model, updating the tracking event messages, and instrumenting the FastAPI app with OpenTelemetry.
Configuration Updates:
src/backend/.env.sample
: AddedAZURE_OPENAI_MODEL_NAME
configuration parameter.src/backend/config.py
: AddedAZURE_OPENAI_MODEL_NAME
as an optional configuration parameter with a default value ofAZURE_OPENAI_DEPLOYMENT_NAME
. Updated theGetAzureOpenAIChatCompletionClient
method to use this new parameter. [1] [2] [3]Functionality Enhancements:
src/backend/app.py
: ImportedFastAPIInstrumentor
fromopentelemetry.instrumentation.fastapi
and instrumented the FastAPI app to enable OpenTelemetry monitoring. [1] [2]Event Tracking:
src/backend/agents/group_chat_manager.py
: Updated the tracking event messages to useformatted_agent
instead ofstep.agent.value.title()
for better readability.Documentation and UI Updates:
TRANSPARENCY_FAQS.md
: Updated the title format for consistency.src/frontend/wwwroot/app.html
: Updated the application name in the UI for consistency.Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information